back button

Rust Todo

Rust Todo

Simple todo website with account.

RustWebsite

Rust Chat

Dev

cd frontend
npm run dev     # run & watch frontend

cd ..
cargo run     # run backend

Compile

cd frontend
# change ws url in src/tools.js#getWsUrl
npm run build     # compile frontend

cd ..
cargo build --release     # compile backend

serve frontend/build     # serve frontend
./target/release/rust_chat     # run backend